8f6f6f78078fa091041bd985279d22e687db7fd9,core/runtime.jvm/src/kotlin/jvm/internal/TypeIntrinsics.java,TypeIntrinsics,asMutableList,#Object#,121

Before Change


            result = (List) obj;
        }
        catch (ClassCastException e) {
            throwCce(e);
        }
        if ((obj instanceof KMappedMarker) && !(obj instanceof KMutableList)) {
            throwCce(obj, "kotlin.MutableList");

After Change


            return (List) obj;
        }
        catch (ClassCastException e) {
            throw throwCce(e);
        }
    }